home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 1 Issue 2 / PDCD-1 - Issue 02.iso / _utilities / utilities / 003 / _gs / !GS / h / MALLOC_ < prev    next >
Text File  |  1991-10-27  |  2KB  |  48 lines

  1. /* Copyright (C) 1989 Aladdin Enterprises.  All rights reserved.
  2.    Distributed by Free Software Foundation, Inc.
  3.  
  4. This file is part of Ghostscript.
  5.  
  6. Ghostscript is distributed in the hope that it will be useful, but
  7. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  8. to anyone for the consequences of using it or for whether it serves any
  9. particular purpose or works at all, unless he says so in writing.  Refer
  10. to the Ghostscript General Public License for full details.
  11.  
  12. Everyone is granted permission to copy, modify and redistribute
  13. Ghostscript, but only under the conditions described in the Ghostscript
  14. General Public License.  A copy of this license is supposed to have been
  15. given to you along with Ghostscript so you can know your rights and
  16. responsibilities.  It should be in a file named COPYING.  Among other
  17. things, the copyright notice and this notice must be preserved on all
  18. copies.  */
  19.  
  20. /* malloc_.h */
  21. /* Generic substitute for Unix malloc.h */
  22.  
  23. #ifdef __MSDOS__
  24. #  include <alloc.h>
  25. #else
  26. #  ifdef VMS
  27.      extern char *malloc();
  28.      extern void free();
  29. #  else
  30. #    ifdef BSD4_2
  31.        extern char *malloc();
  32. #    else
  33. #      ifdef _HPUX_SOURCE
  34. #        include <stdlib.h>
  35. #      else
  36. #        ifdef ARC
  37.            /* Use the wimp heap allocator */
  38. #          include "heap.h"
  39. #          define malloc heap_alloc
  40. #          define free   heap_free
  41. #        else
  42. #          include <malloc.h>
  43. #        endif /* !ARC */
  44. #      endif                /* !_HPUX_SOURCE */
  45. #    endif                /* !BSD4_2 */
  46. #  endif                /* !VMS */
  47. #endif                    /* !__MSDOS__ */
  48.